home *** CD-ROM | disk | FTP | other *** search
- gWidth = max(
- zstring_width(zstring: '$$$/Dialogs/NewServices/Text1'),
- zstring_width(zstring: '$$$/Dialogs/NewServices/Text2'),
- max_char_width() * 32);
-
- dialog(name: '$$$/Dialogs/NewServices')
- {
- view(align_children: align_left)
- {
- static_text(name: '$$$/Dialogs/NewServices/Text1', width: gWidth);
- static_text(name: '$$$/Dialogs/NewServices/Text2', width: gWidth);
-
- view(align_children: align_top)
- {
- list_box(item_id: 'list', width: gWidth, height: 200, align: align_fill);
- }
-
- ok_cancel(ok_name: '$$$/Dialogs/NewServices/Update');
- }
- }
-